CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - binary tree

搜索资源列表

  1. Linear-binary-tree

    0下载:
  2. 用类的方法实现线性二叉树。用C++ 实现-Linear binary tree
  3. 所属分类:Other systems

    • 发布日期:2017-04-26
    • 文件大小:276256
    • 提供者:胡昊坤
  1. Binary-tree

    0下载:
  2. 实现二叉树的叶子结点按从左至右的顺序连成一个单链表-Binary tree leaf nodes in order left to right together into a single list
  3. 所属分类:Other systems

    • 发布日期:2017-03-30
    • 文件大小:15111
    • 提供者:张朋
  1. REBUILD-BINARY-TREE.cpp

    0下载:
  2. 我们知道如何按照三种深度优先次序来周游一棵二叉树,来得到中根序列、前根序列和后根序列。反过来,如果给定二叉树的中根序列和后根序列,或者给定中根序列和前根序列,可以重建一二叉树。本题输入一棵二叉树的中根序列和后根序列,要求在内存中重建二叉树,最后输出这棵二叉树的前根序列。 用不同的整数来唯一标识二叉树的每一个结点,下面的二叉树 中根序列是9 5 32 67 后根序列9 32 67 5 前根序列5 9 67 32 -We know how to
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:1210
    • 提供者:nature
  1. Binary-Tree

    0下载:
  2. 数据库结构中实验内容Binary Tree实验源代码,代码比较短-Database structure experiments Binary Tree experiment source code, the code is relatively short
  3. 所属分类:Compiler program

    • 发布日期:2017-04-13
    • 文件大小:2033
    • 提供者:陈凤群
  1. binary-tree

    0下载:
  2. 由c/c++写的二叉树的常见操作,比如:树的建立、计算树的深度、计算树的叶子节点-Storage and realization of a binary tree
  3. 所属分类:Data structs

    • 发布日期:2017-05-19
    • 文件大小:5393207
    • 提供者:陈晚林
  1. Binary-tree-instant-code

    2下载:
  2. 给定任意一组(N 个)码长(x1,x2...) ,根据克拉夫特不等式判断是否能够得到二元即时码。如果能,利用二叉树编制二元即时码-According to the Kraft to judge whether it can be coding as a binary instantaneous code. If it does,using binary tree to coding it as a binary instant code.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-27
    • 文件大小:400169
    • 提供者:胡永恒
  1. Binary-Tree

    0下载:
  2. 关于二叉树先、中、后三种遍历的算法,以及对两棵二叉树进行判等的算法用c语言加以实现-About binary tree first, middle and last three traversal algorithms, and sentenced to two trees and other binary tree algorithm to be implemented in c language
  3. 所属分类:software engineering

    • 发布日期:2017-04-02
    • 文件大小:2625
    • 提供者:
  1. binary-tree

    0下载:
  2. 二叉树是每个节点最多有两个子树的树结构。通常子树被称作“左子树”(left subtree)和“右子树”(right subtree)。二叉树常被用于实现二叉查找树和二叉堆。-Enhanced JFS2 uses a binary tree representation while performing inode searches, which is a much better method than the linear method used by JFS.
  3. 所属分类:Software Testing

    • 发布日期:2017-04-13
    • 文件大小:1580
    • 提供者:yangpeng
  1. binary-tree

    0下载:
  2. Binary tree implementation in C
  3. 所属分类:Data structs

    • 发布日期:2017-04-12
    • 文件大小:970
    • 提供者:Misty
  1. non-recursive-of-binary-tree

    0下载:
  2. 二叉树的非递归遍历,运用栈的思想实现二叉树非递归遍历-Non-recursive binary tree traversal, using stacks of thinking non-recursive binary tree traversal
  3. 所属分类:Data structs

    • 发布日期:2017-04-26
    • 文件大小:359097
    • 提供者:liwei
  1. binary-tree

    1下载:
  2. 1)按照先序序列建立下图所示二叉树的二插链表树,结点元素类型取字符型,树的字符序列从键盘逐个输入。 2)在第1)步建立好的二叉链表树上实施前序、中序和后序递归遍历,并输出相应遍历序列。 3) 在第1) 步建立好的二叉链表树上实施前序遍历的叶子结点输出及其个数统计。 4)在第1)步建立好的二叉链表树上实施中序非递归遍历,并输出相应遍历序列(选做) 5)中序线索化第1)步所建立的二叉链表树,中序遍历所建立的线索二叉树,并输出遍历结果(选做) -1) the establishme
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-29
    • 文件大小:55779
    • 提供者:
  1. Balanced-binary-tree

    0下载:
  2. 使用c语言编写程序实现了平衡二叉树的创建功能-Use c language to create a balanced binary tree functions
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:1093
    • 提供者:shirley
  1. binary-tree

    0下载:
  2. 二叉树遍历(Traversal)是指沿着某条搜索路线,依次对树中每个结点均做一次且仅做一次访问。访问结点所做的操作依赖于具体的应用问 题。-Binary tree Traversal (Traversal) refers to the search along a route, in turn, each node in the tree are one and only for a visit. Operations to do access nodes depends on the spec
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-05-02
    • 文件大小:653066
    • 提供者:赵天宇1215
  1. Story-editor-binary-tree-traversal

    0下载:
  2. “文章编辑二叉树遍历各种排序.cpp”、“二叉树的建立以及遍历.cpp”、“各种排序.cpp”、“文章编辑.cpp”- The article edit binary tree traversal various sorting .c++ , build a binary tree traversal and .cpp , various sorting .cpp , Story Editor .cpp
  3. 所属分类:Console

    • 发布日期:2017-04-30
    • 文件大小:11688
    • 提供者:薇乐知
  1. Java-binary-tree

    0下载:
  2. 用Java编写的二叉树的数据结构,包括二叉树的每个节点的值,以及各子树的指针。 -Written in Java binary tree data structure, including the value of each node of a binary tree, and each sub-tree pointer.
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-12
    • 文件大小:993
    • 提供者:george
  1. Binary-Tree

    0下载:
  2. 二叉树通过字符串方式,能够创建相应的二叉树,而且可以递归实现。同样,对于任意的二叉树,可以生成对应的字符串。包括从指定字符串形式创建二叉树(包括空树和平凡树)、将二叉树按照指定的字符串形式输出、判断是否空树、 计算二叉树的结点总数、计算二叉树的叶子总数、计算二叉树的高度,其中空树和平凡树的高度分别为0和1、前序遍历输出二叉树,逗号分隔、中序遍历输出二叉树,逗号分隔、后序遍历输出二叉树,逗号分隔、将树清空等功能-By way of binary string, you can create t
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:599674
    • 提供者:
  1. binary-tree-traversal

    0下载:
  2. 二叉树的遍历 数据结构c/c++ 描述 开发环境为VS2013-Data structure c/c++ binary tree traversal
  3. 所属分类:Other systems

    • 发布日期:2017-05-01
    • 文件大小:457340
    • 提供者:王刚
  1. Binary-Tree-Traversal

    0下载:
  2. 本程序的功能是利用二叉树后序遍历来实现表达式的转换,同时可以使用栈来求解 后缀表达式的值。-The function of this program is to be implemented after preorder binary tree transform expression, and can use the stack to solve value postfix expression.
  3. 所属分类:Data structs

    • 发布日期:2017-04-30
    • 文件大小:109854
    • 提供者:王丹
  1. binary-tree

    0下载:
  2. 1.实现二叉树的下列运算: [1]输入一个二叉树的先序序列,生成二叉树的二叉链表 [2]显示其先序、中序和后序遍历结果。 [3]计算二叉树的叶子结点数。 [4]求二叉树的深度 2.编程实现二叉树的层次遍历 3.哈夫曼编码-1.operational binary tree: [1] Enter a first sequence binary tree sequence, generating a binary tree binary list [2] show
  3. 所属分类:Data structs

    • 发布日期:2017-05-01
    • 文件大小:263697
    • 提供者:王玥天
  1. binary-tree

    0下载:
  2. Binary tree and its usage and how to build one
  3. 所属分类:software engineering

    • 发布日期:2017-04-30
    • 文件大小:301929
    • 提供者:Lucky123
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 50 »
搜珍网 www.dssz.com